Remove help url from developer string.
authorCamila Ayres <hello@camilasan.com>
Thu, 20 Feb 2025 17:32:53 +0000 (18:32 +0100)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Tue, 25 Feb 2025 10:03:53 +0000 (10:03 +0000)
Signed-off-by: Camila Ayres <hello@camilasan.com>
src/libsync/theme.cpp

index 16e148167a8f9ed07f1c9aa092d2b167572c303d..258e89a3c31bb2c4086adb5f3f083db736ee54ff 100644 (file)
@@ -416,7 +416,7 @@ QString Theme::developerStringInfo() const
     const auto osStringList = Utility::platformName().split(QLatin1Char(' '));
     const auto osName = osStringList.at(0);
 
-    const auto devString = QString(tr("<p>%1 Desktop Client Version %2 (%3). For more information please click <a href='%4'>here</a>.</p>", "%1 is application name. %2 is the human version string. %3 is the operating system name. %4 is the help URL"))
+    const auto devString = QString(tr("%1 Desktop Client Version %2 (%3)", "%1 is application name. %2 is the human version string. %3 is the operating system name."))
     .arg(APPLICATION_NAME, QString::fromLatin1(MIRALL_HUMAN_VERSION_STRING), osName, helpUrl());
 
     return devString;